page.tsx 186 B

123456789
  1. import { FC, PropsWithChildren } from "react";
  2. interface Props {}
  3. const About: FC<PropsWithChildren<Props>> = (props) => {
  4. return <div>hello About</div>;
  5. };
  6. export default About;